var max=0;function AsylumNavLink(parentId,linkId,order,href,linkText,target,width)
{this.linkId=linkId;this.parentId=parentId;this.order=order;this.href=href;this.linkText=linkText;this.target=target;this.width=width;};function AsylumNav(contId,layout,offset)
{this.menuCont=document.getElementById(contId);this.layout=layout;this.offset=(typeof offset=='undefined'?'Right':offset);this.menuItems=new Object();this.clickUnderCreated=false;};AsylumNav.prototype.AddLink=function(parentId,linkId,order,href,linkText,target,width)
{if(typeof this.menuItems[parentId]=='undefined')
{this.menuItems[parentId]=new Object();}
if(typeof width=="undefined")width=false;this.menuItems[parentId][linkId]=new AsylumNavLink(parentId,linkId,order,href,linkText,target,width);if(order>max){max=order;}};AsylumNav.prototype.CreateLevel=function(levelId,idPrefix)
{obj=this;div=document.createElement('div');div.id=idPrefix+levelId;div.levelId=levelId;div.idPrefix=idPrefix;div.className='levelDiv';div.onmouseout=function(e){obj.HideLevel(e);};div.subLevels=new Object();if(levelId!='0')
{div.style.visibility='hidden';div.className+=' subLevel';div.style.position='absolute';}
else
{div.className+=' topLevel';}
if(this.layout=='Horizontal')
{div.style.position='absolute';}
div.style.zIndex=10;if(this.menuCont){this.menuCont.appendChild(div);}
for(i=0;i<=max;i++){for(linkId in this.menuItems[levelId]){if(this.menuItems[levelId][linkId].order==i){linkDiv=document.createElement('div');linkDiv.id='asylumNavLinkDiv'+linkId;linkDiv.linkId=linkId;linkDiv.levelId=levelId;linkDiv.className='linkDiv';if(levelId=="0"){linkDiv.className+=" topLevel";if(this.menuItems[levelId][linkId].width){linkDiv.style.width=this.menuItems[levelId][linkId].width+"px";}}
div.appendChild(linkDiv);navLink=this.menuItems[levelId][linkId];a=document.createElement('a');a.id='asylumNavLink'+linkId;a.linkType='navMenu';a.linkId=linkId;a.levelId=navLink.parentId;a.parentId=navLink.parentId;if(navLink.href==''||navLink.href=='#')
{a.href='#';a.target='';a.style.cursor='default';}
else
{a.href=navLink.href;a.target=navLink.target;}
if(this.layout=='Vertical')
{a.innerHTML=navLink.linkText;}
else
{a.innerHTML=navLink.linkText.split(' ').join('&nbsp;');}
a.onmouseover=function(){obj.ShowLevel(this);};linkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';linkDiv.className+=' activeLink';topLink=this.GetTopLevelLink(navLink);if(typeof this.menuItems[topLink.linkId]!='undefined'&&navLink.levelId!='0')
{try{document.getElementById('asylumNavLink'+topLink.linkId).className+=' activeLink';document.getElementById('asylumNavLinkDiv'+topLink.linkId).className+=' activeLink';}catch(e){}}
if(document.getElementById("clickUnder")!=null)
{this.CreateClickUnder(topLink,true);}}
else
{}
if(typeof this.menuItems[linkId]!='undefined')
{div.subLevels[linkId]=true;}}}}
return div;};AsylumNav.prototype.Construct=function()
{if(this.menuCont==null){return;}
var obj=this;for(levelId in this.menuItems)
{this.CreateLevel(levelId,'asylumNavLevel');}
if(this.layout=='Vertical')
{if(typeof document.getElementById('tplMainSectors')!=null)
{ms=document.getElementById('tplMainSectors');ms.style.height=ms.offsetHeight;}}
else
{this.menuCont.style.height=document.getElementById('asylumNavLevel0').offsetHeight+'px';}
this.CreateBreadCrumbs();};AsylumNav.prototype.CreateClickUnder=function(navLink,active)
{if(typeof doneClickUnder=="undefined"){doneClickUnder=true;}else{return;}
if(document.getElementById("clickUnder")==null)return;obj=this;var linkId;if(this.layout=='Vertical')
{clickDiv=document.createElement('div');clickDiv.id="clickUnder";document.getElementById("clickUnder").appendChild(clickDiv);linkDiv=document.getElementById('asylumNavLinkDiv'+navLink.linkId);linkDiv.appendChild(clickDiv);}
else
{clickDiv=document.getElementById("clickUnder");}
var linkCount=0;for(linkId in this.menuItems[navLink.linkId])
{linkCount++;clickLinkDiv=document.createElement('div');clickLinkDiv.className='clickLinkDiv';clickLink=this.menuItems[navLink.linkId][linkId];txt=document.createTextNode(' ');clickDiv.appendChild(txt);a=document.createElement('a');a.id='asylumNavClickLink'+clickLink.linkId;a.className='clickLink';a.linkType='clickLink';a.linkId=linkId;a.levelId=clickLink.parentId;a.parentId=clickLink.parentId;if(clickLink.href==''||clickLink.href=='#'){a.href='#';a.target='';a.style.cursor='default';}else{a.href=clickLink.href;a.target=clickLink.target;}
if(this.layout=="Vertical"){a.innerHTML=clickLink.linkText;}else if(this.layout=="Horizontal-SubMenu"){if(clickLink.linkText.substring(0,1)==" "){a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}else{a.innerHTML=clickLink.linkText;}}else{a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}
a.onmouseover=function(){obj.HideAllLevels();obj.ShowLevel(this);};a.onmouseout=function(e){obj.HideLevel(e);};clickLinkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';clickLinkDiv.className+=' activeLink';}
clickDiv.appendChild(clickLinkDiv);txt=document.createTextNode(' ');clickDiv.appendChild(txt);}
if(linkCount==0||active==false)
{clickDiv.className='inactiveClickUnder';}
else
{clickDiv.className='activeClickUnder';}};AsylumNav.prototype.GetTopLevelLink=function(navLink)
{if(navLink.parentId=='0')
{return(navLink);}
while(1==1)
{navLink=this.GetParentLink(navLink);if(typeof navLink.parentId!='undefined')
{if(navLink.parentId=='0')
{break;}}}
return(navLink);};AsylumNav.prototype.GetParentLink=function(navLink)
{var levelId;var linkId;for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{parNavLink=this.menuItems[levelId][linkId];if(parNavLink.linkId==navLink.parentId)
{return(parNavLink);}}}};AsylumNav.prototype.GetXPos=function(obj)
{var curleft=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curleft+=obj.offsetLeft;obj=obj.offsetParent;}}
else if(obj.x)
curleft+=obj.x;return curleft;};AsylumNav.prototype.GetYPos=function(obj)
{var curtop=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curtop+=obj.offsetTop;obj=obj.offsetParent;}}
else if(obj.y)
curtop+=obj.y;return curtop;};AsylumNav.prototype.ShowLevel=function(el)
{levelId=el.linkId;this.currentLevelId=levelId;window.clearTimeout(this.timeoutId);this.HideSubLevels(el.levelId);if(typeof this.menuItems[levelId]=='undefined')
{return;}
if(el.linkType=='clickLink')
{eP=document.getElementById('asylumNavClickLink'+el.linkId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'subLevel','clickUnderSubLevel');}
else
{eP=document.getElementById('asylumNavLink'+levelId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'clickUnderSubLevel','subLevel');}
if(eP.parentId=='0')
{switch(this.offset)
{case'Right':offsetX=(eP.offsetWidth);offsetY=0;break;case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;case'Bottom':offsetX=0;offsetY=eP.offsetHeight;eL.style.minWidth=eP.offsetWidth;break;}}
else
{switch(this.offset)
{case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;default:offsetX=(eP.offsetWidth);offsetY=0;break;}}
pX=this.GetXPos(eP);pY=this.GetYPos(eP);lX=pX+offsetX;lY=pY+offsetY;eL.style.position='absolute';$(eL).css({left:lX,top:lY});eL.style.visibility='visible';};AsylumNav.prototype.GetLevelWidth=function(levelId)
{maxWidth=0;for(linkId in this.menuItems[levelId])
{a=document.getElementById('asylumNavLink'+linkId);thisWidth=a.offsetWidth;if(thisWidth>maxWidth)
{maxWidth=thisWidth;}}
return(maxWidth);};AsylumNav.prototype.HideSubLevels=function(levelId,omitLevelId)
{if(typeof omitLevelId=='undefined')
{omitLevelId='0';}
eL=document.getElementById('asylumNavLevel'+levelId);for(levelId in eL.subLevels)
{this.HideSubLevels(levelId);if(levelId!=omitLevelId)
{eL=document.getElementById('asylumNavLevel'+levelId);eL.style.visibility='hidden';}}};AsylumNav.prototype.HideLevel=function(e)
{window.clearTimeout(this.timeoutId);if(!e)e=window.event;var el=(e.relatedTarget)?e.relatedTarget:e.toElement;var obj=this;var funct=function(){obj._HideLevel(el);};this.timeoutId=window.setTimeout(funct,1000);};AsylumNav.prototype._HideLevel=function(el)
{if(!el||el.id.substr(0,9)!='asylumNav'||(el.id.substr(0,9)=='asylumNav'&&el.style.visibility=='hidden'))
{this.HideAllLevels();}};AsylumNav.prototype.HideAllLevels=function()
{for(levelId in this.menuItems)
{if(levelId!='0')
{eL=document.getElementById('asylumNavLevel'+levelId);if(eL!=null)eL.style.visibility='hidden';}}};AsylumNav.prototype.CreateBreadCrumbs=function()
{if(document.getElementById("breadCrumbs")!=null)
{crumbsCont=document.getElementById("breadCrumbs");crumbsCont.style.display='none';crumbs='';homeLink='';for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{navLink=this.menuItems[levelId][linkId];if(homeLink=='')
{homeLink='<a href="'+navLink.href+'" target="'+navLink.target+'">'
+navLink.linkText+'</a> &gt; ';}
if(linkId==pageId)
{i=0;parNavLink=this.GetParentLink(navLink);while(typeof parNavLink=='object')
{i++;crumbs='<a href="'+parNavLink.href+'" target="'+parNavLink.target+'">'
+parNavLink.linkText+'</a> &gt; '+crumbs;parNavLink=this.GetParentLink(parNavLink);}
if(i>1)
{crumbsCont.style.display='block';crumbsCont.innerHTML=homeLink+crumbs+'<span class="activeCrumb">'+navLink.linkText+'</span>';}
return(true);}}}}};function RemoveClass(el,className)
{var replaceName=(el.className.match(' '+className)?' '+className:className);el.className=el.className.replace(replaceName,'');};function AddClass(el,className)
{RemoveClass(el,className);el.className+=' '+className;};function SwapClass(el,removeClassName,addClassName)
{RemoveClass(el,removeClassName);AddClass(el,addClassName);};;$(function() {for (var i in tasks) {window.setTimeout(tasks[i], 0);}});function initMenu(){};$(function(){$("#navMenu").navmenu({pageInfo:{"a378124":{"P":0,"ID":378177,"C":378124,"O":0,"U":"http:\/\/www.webgenius.co.nz\/","N":"Home","T":"_top","R":"","RT":"_blank"},"a378134":{"P":378124,"ID":378134,"C":378134,"O":"1","U":"http:\/\/www.webgenius.co.nz\/web-site-marketing.html","N":"About Us","T":"_top","R":"","RT":"_blank"},"a378178":{"P":378134,"ID":378181,"C":378178,"O":"1","U":"http:\/\/www.webgenius.co.nz\/internet-marketing-team.html","N":"The Team","T":"_top","R":"","RT":"_blank"},"a378179":{"P":378134,"ID":378182,"C":378179,"O":"2","U":"http:\/\/www.webgenius.co.nz\/web-development-partners.html","N":"Partners","T":"_top","R":"","RT":"_blank"},"a378180":{"P":378134,"ID":378183,"C":378180,"O":"3","U":"http:\/\/www.webgenius.co.nz\/web-marketing-effectiveness.html","N":"Web Genius Guarantee","T":"_top","R":"","RT":"_blank"},"a378135":{"P":378124,"ID":378135,"C":378135,"O":"2","U":"http:\/\/www.webgenius.co.nz\/web-marketing-formulas.html","N":"Proven Formulas","T":"_top","R":"","RT":"_blank"},"a378136":{"P":378124,"ID":378136,"C":378136,"O":"3","U":"http:\/\/www.webgenius.co.nz\/web-content-management.html","N":"Powerful Software","T":"_top","R":"","RT":"_blank"},"a378137":{"P":378136,"ID":378137,"C":378137,"O":"1","U":"http:\/\/www.webgenius.co.nz\/email-marketing-services.html","N":"Data Center: database e-marketing management","T":"_top","R":"","RT":"_blank"},"a378138":{"P":378136,"ID":378138,"C":378138,"O":"2","U":"http:\/\/www.webgenius.co.nz\/permission-based-email.html","N":"Site Center: customised website content management","T":"_top","R":"","RT":"_blank"},"a378139":{"P":378136,"ID":378139,"C":378139,"O":"3","U":"http:\/\/www.webgenius.co.nz\/email-marketing-newsletter.html","N":"Message Center: email newsletters and promotions","T":"_top","R":"","RT":"_blank"},"a378140":{"P":378136,"ID":378140,"C":378140,"O":"4","U":"http:\/\/www.webgenius.co.nz\/web-based-email.html","N":"Delivery Center: email delivery and auto response","T":"_top","R":"","RT":"_blank"},"a378141":{"P":378136,"ID":378141,"C":378141,"O":"5","U":"http:\/\/www.webgenius.co.nz\/e-commerce-web.html","N":"Commerce Center: secure shopping cart and catalogues","T":"_top","R":"","RT":"_blank"},"a378142":{"P":378136,"ID":378142,"C":378142,"O":"6","U":"http:\/\/www.webgenius.co.nz\/web-site-builder.html","N":"Dialog Center: blogs, forums, Q&A archives and comments sections","T":"_top","R":"","RT":"_blank"},"a378143":{"P":378136,"ID":378143,"C":378143,"O":"7","U":"http:\/\/www.webgenius.co.nz\/loyalty-rewards-program.html","N":"Loyalty Center: rewards programme management","T":"_top","R":"","RT":"_blank"},"a378144":{"P":378136,"ID":378144,"C":378144,"O":"8","U":"http:\/\/www.webgenius.co.nz\/online-event-bookings.html","N":"Event Center: online event registration","T":"_top","R":"","RT":"_blank"},"a378145":{"P":378136,"ID":378145,"C":378145,"O":"9","U":"http:\/\/www.webgenius.co.nz\/email-marketing-software.html","N":"Image Center: manage images and files","T":"_top","R":"","RT":"_blank"},"a378146":{"P":378136,"ID":378146,"C":378146,"O":"10","U":"http:\/\/www.webgenius.co.nz\/e-marketing-stats.html","N":"Statistics Center: track key web and email stats","T":"_top","R":"","RT":"_blank"},"a378147":{"P":378136,"ID":378147,"C":378147,"O":"11","U":"http:\/\/www.webgenius.co.nz\/quality-web-site.html","N":"Help Center: online help system","T":"_top","R":"","RT":"_blank"},"a378148":{"P":378124,"ID":378148,"C":378148,"O":"4","U":"http:\/\/www.webgenius.co.nz\/web-design-hosting.html","N":"Packages","T":"_top","R":"","RT":"_blank"},"a378149":{"P":378148,"ID":378149,"C":378149,"O":"1","U":"http:\/\/www.webgenius.co.nz\/small-business-website.html","N":"QuikStart","T":"_top","R":"","RT":"_blank"},"a378150":{"P":378148,"ID":378150,"C":378150,"O":"2","U":"http:\/\/www.webgenius.co.nz\/affordable-web-development.html","N":"JumpStart","T":"_top","R":"","RT":"_blank"},"a378151":{"P":378148,"ID":378151,"C":378151,"O":"3","U":"http:\/\/www.webgenius.co.nz\/premium-website-package.html","N":"Pro","T":"_top","R":"","RT":"_blank"},"a378152":{"P":378124,"ID":378152,"C":378152,"O":"5","U":"http:\/\/www.webgenius.co.nz\/website-success-stories.html","N":"Success Stories","T":"_top","R":"","RT":"_blank"},"a579485":{"P":378152,"ID":579488,"C":579485,"O":"1","U":"http:\/\/www.webgenius.co.nz\/page579485.html","N":"Pro","T":"_top","R":"","RT":"_blank"},"a378153":{"P":579485,"ID":378153,"C":378153,"O":"1","U":"http:\/\/www.webgenius.co.nz\/retail-web-marketing.html","N":"Shoe Clinic","T":"_top","R":"","RT":"_blank"},"a499667":{"P":579485,"ID":499699,"C":499667,"O":"2","U":"http:\/\/www.webgenius.co.nz\/wondercap.html","N":"Wondercap","T":"_top","R":"","RT":"_blank"},"a499688":{"P":579485,"ID":499700,"C":499688,"O":"3","U":"http:\/\/www.webgenius.co.nz\/purebread.html","N":"Purebread","T":"_top","R":"","RT":"_blank"},"a378154":{"P":579485,"ID":378154,"C":378154,"O":"4","U":"http:\/\/www.webgenius.co.nz\/hair-salon-beauty.html","N":"Is Bliss Salon and Spa","T":"_top","R":"","RT":"_blank"},"a482818":{"P":579485,"ID":482869,"C":482818,"O":"5","U":"http:\/\/www.webgenius.co.nz\/making futures happen academy.html","N":"Making Futures Happen Academy","T":"_top","R":"","RT":"_blank"},"a579486":{"P":378152,"ID":579489,"C":579486,"O":"2","U":"http:\/\/www.webgenius.co.nz\/page579486.html","N":"Jumpstart","T":"_top","R":"","RT":"_blank"},"a378155":{"P":579486,"ID":378155,"C":378155,"O":"1","U":"http:\/\/www.webgenius.co.nz\/business-website-design.html","N":"The Business Centre","T":"_top","R":"","RT":"_blank"},"a378156":{"P":579486,"ID":378156,"C":378156,"O":"2","U":"http:\/\/www.webgenius.co.nz\/onlinemarketing-case-study.html","N":"Second Image","T":"_top","R":"","RT":"_blank"},"a378157":{"P":579486,"ID":378157,"C":378157,"O":"3","U":"http:\/\/www.webgenius.co.nz\/website-marketing-case.html","N":"Matatoa Trees and Shrubs","T":"_top","R":"","RT":"_blank"},"a378158":{"P":579486,"ID":378158,"C":378158,"O":"4","U":"http:\/\/www.webgenius.co.nz\/financial-services-website.html","N":"Thomson Jones Mortgages and Insurance","T":"_top","R":"","RT":"_blank"},"a378159":{"P":579486,"ID":378159,"C":378159,"O":"5","U":"http:\/\/www.webgenius.co.nz\/small-retail-business.html","N":"Elestial","T":"_top","R":"","RT":"_blank"},"a378160":{"P":579486,"ID":378160,"C":378160,"O":"6","U":"http:\/\/www.webgenius.co.nz\/training-business-website.html","N":"Aspire Training and Business Solutions","T":"_top","R":"","RT":"_blank"},"a378161":{"P":579486,"ID":378161,"C":378161,"O":"7","U":"http:\/\/www.webgenius.co.nz\/website-designer-development.html","N":"Empower Pilates","T":"_top","R":"","RT":"_blank"},"a378162":{"P":579486,"ID":378162,"C":378162,"O":"8","U":"http:\/\/www.webgenius.co.nz\/property-investment-website.html","N":"Haley Fenwick Financial Services","T":"_top","R":"","RT":"_blank"},"a378163":{"P":579486,"ID":378163,"C":378163,"O":"9","U":"http:\/\/www.webgenius.co.nz\/website-promotion-success.html","N":"Career Coach Consulting","T":"_top","R":"","RT":"_blank"},"a378164":{"P":579486,"ID":378164,"C":378164,"O":"10","U":"http:\/\/www.webgenius.co.nz\/accountant-website-success.html","N":"All Tax UK","T":"_top","R":"","RT":"_blank"},"a378165":{"P":579486,"ID":378165,"C":378165,"O":"11","U":"http:\/\/www.webgenius.co.nz\/online-training-business.html","N":"Medtra Clinical Education","T":"_top","R":"","RT":"_blank"},"a426413":{"P":579486,"ID":426414,"C":426413,"O":"12","U":"http:\/\/www.webgenius.co.nz\/online-lead-generation.html","N":"Banerect","T":"_top","R":"","RT":"_blank"},"a426412":{"P":579486,"ID":426415,"C":426412,"O":"13","U":"http:\/\/www.webgenius.co.nz\/engineering-website-success.html","N":"NZ Springworks","T":"_top","R":"","RT":"_blank"},"a426411":{"P":579486,"ID":426416,"C":426411,"O":"14","U":"http:\/\/www.webgenius.co.nz\/local-website-business.html","N":"Fred Chapman Garage Doors","T":"_top","R":"","RT":"_blank"},"a426410":{"P":579486,"ID":426417,"C":426410,"O":"15","U":"http:\/\/www.webgenius.co.nz\/online-marketing-casestudy.html","N":"Adventure Coaching","T":"_top","R":"","RT":"_blank"},"a426758":{"P":579486,"ID":426759,"C":426758,"O":"16","U":"http:\/\/www.webgenius.co.nz\/small-service-business.html","N":"Action Property Services","T":"_top","R":"","RT":"_blank"},"a429299":{"P":579486,"ID":429326,"C":429299,"O":"17","U":"http:\/\/www.webgenius.co.nz\/the volunteers.html","N":"The Volunteers","T":"_top","R":"","RT":"_blank"},"a429300":{"P":579486,"ID":429301,"C":429300,"O":"18","U":"http:\/\/www.webgenius.co.nz\/road-sign-web.html","N":"Approach Signs","T":"_top","R":"","RT":"_blank"},"a431321":{"P":579486,"ID":431322,"C":431321,"O":"19","U":"http:\/\/www.webgenius.co.nz\/panelbeater-website-marketing.html","N":"August Panel and Spray","T":"_top","R":"","RT":"_blank"},"a436004":{"P":579486,"ID":436006,"C":436004,"O":"20","U":"http:\/\/www.webgenius.co.nz\/law-firm-web-marketing.html","N":"Tania Davis Law","T":"_top","R":"","RT":"_blank"},"a438940":{"P":579486,"ID":438941,"C":438940,"O":"21","U":"http:\/\/www.webgenius.co.nz\/lawyer-legal-website.html","N":"Kapiti Law","T":"_top","R":"","RT":"_blank"},"a470012":{"P":579486,"ID":482862,"C":470012,"O":"22","U":"http:\/\/www.webgenius.co.nz\/elizabeth taylor graphics.html","N":"Elizabeth Taylor Graphics","T":"_top","R":"","RT":"_blank"},"a470022":{"P":579486,"ID":482863,"C":470022,"O":"23","U":"http:\/\/www.webgenius.co.nz\/the living room.html","N":"The Living Room","T":"_top","R":"","RT":"_blank"},"a470193":{"P":579486,"ID":482865,"C":470193,"O":"24","U":"http:\/\/www.webgenius.co.nz\/beveridge locksmiths.html","N":"Beveridge Locksmiths","T":"_top","R":"","RT":"_blank"},"a470194":{"P":579486,"ID":482866,"C":470194,"O":"25","U":"http:\/\/www.webgenius.co.nz\/ecopower-ltd.html","N":"Ecopower Ltd","T":"_top","R":"","RT":"_blank"},"a475134":{"P":579486,"ID":482868,"C":475134,"O":"26","U":"http:\/\/www.webgenius.co.nz\/warm air distribution .html","N":"Warm Air Distribution ","T":"_top","R":"","RT":"_blank"},"a486430":{"P":579486,"ID":487186,"C":486430,"O":"27","U":"http:\/\/www.webgenius.co.nz\/innovative packaging.html","N":"Innovative Packaging","T":"_top","R":"","RT":"_blank"},"a579487":{"P":378152,"ID":579490,"C":579487,"O":"3","U":"http:\/\/www.webgenius.co.nz\/page579487.html","N":"Quikstart","T":"_top","R":"","RT":"_blank"},"a438994":{"P":579487,"ID":438995,"C":438994,"O":"3","U":"http:\/\/www.webgenius.co.nz\/painter-decorating-website.html","N":"Kapiti Ideal Decorators","T":"_top","R":"","RT":"_blank"},"a470175":{"P":579487,"ID":482864,"C":470175,"O":"5","U":"http:\/\/www.webgenius.co.nz\/frank buttner.html","N":"Frank Buttner","T":"_top","R":"","RT":"_blank"},"a475133":{"P":579487,"ID":482867,"C":475133,"O":"6","U":"http:\/\/www.webgenius.co.nz\/wellington boat charters.html","N":"Wellington Boat Charters","T":"_top","R":"","RT":"_blank"},"a513499":{"P":579487,"ID":513502,"C":513499,"O":"7","U":"http:\/\/www.webgenius.co.nz\/classic apparel & print.html","N":"Classic Apparel &amp; Print","T":"_top","R":"","RT":"_blank"},"a378175":{"P":378124,"ID":606625,"C":378175,"O":"6","U":"http:\/\/www.webgenius.co.nz\/website-web-marketing.html","N":"Online Estimate","T":"_top","R":"","RT":"_blank"},"a378166":{"P":378124,"ID":378166,"C":378166,"O":"7","U":"http:\/\/www.webgenius.co.nz\/web-marketing-blog.html","N":"Blog","T":"_top","R":"","RT":"_blank"},"a378176":{"P":378124,"ID":378176,"C":378176,"O":"8","U":"http:\/\/www.webgenius.co.nz\/website-designer.html","N":"Contact Us","T":"_top","R":"","RT":"_blank"}},alignment:"Horizontal",animate:0})});